home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 37 / Amiga Format CD37 (1999-02-16)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-03].iso / -screenplay- / shareware / invasionforce / source / smakefile.x < prev    next >
Text File  |  1999-01-09  |  463b  |  28 lines

  1. #
  2. #
  3. # Makefile 1/18/97
  4.  
  5. OBJS= Yeah.o Utils.o status.o cyber1.o Sound.o options.o map_grafx.o \
  6.       map_display.o map_editor.o map_editor2.o cyber_data.o titlescreen.o main_menu.o low_smash.o game_play1.o \
  7.       graphics.o game_play2.o Gadgets.o cyber_interface.o Donk.o death_cry.o \
  8.       data_struct.o Boom.o cyber2.o cyber3.o cyber4.o cyber5.o
  9.  
  10.  
  11. all:
  12.     smake -f debug.smake
  13.     
  14.     
  15. release:
  16.     smake -f release.smake
  17.  
  18.  
  19. clean:
  20.     delete $(OBJS)
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.